home *** CD-ROM | disk | FTP | other *** search
/ More MacCube 2: Games / More MacCube Vol 2 Games.bin / Games / Xconq 7.0.1 / lib / ww2-stdunit.g < prev    next >
Text File  |  1995-08-22  |  953b  |  34 lines

  1. (game-module "ww2-stdunit"
  2.   (title "WWII in Standard Game")
  3.   (blurb "The standard game, modified for WWII scenarios")
  4.   )
  5.  
  6. ;; Note that although we *include* stdunit, it is not a base module,
  7. ;; since we want this module to be a base module for scenarios.
  8. ;; (This is an example of why base-module is a property and not
  9. ;; something calculated from inclusion.)
  10.  
  11. (include "stdunit")
  12.  
  13. ;; Preset the sides, which restricts this to post-Dec 1941, when the
  14. ;; sides were clearly lined up.
  15.  
  16. (side 1 (name "Allies"))
  17.  
  18. (side 2 (name "Axis"))
  19.  
  20. (set sides-min 2)
  21. (set sides-max 2)
  22.  
  23. ;; The terrain of the world will always be known.
  24.  
  25. (set terrain-seen true)
  26.  
  27. (game-module (design-notes
  28.   "This is a set of modifications to stdunit that adapt it to the WWII era."
  29.   "As such, it is quite lacking in accuracy, but has the advantage that it is"
  30.   "simpler and more familiar."
  31.   ""
  32.   "This should be included in specific scenarios that have associated dates."
  33.   ))
  34.